home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d2 / tsbat27.arc / SETCOM.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-09-19  |  495 b   |  15 lines

  1. echo off
  2. echo Relocate the command interpreter
  3. echo By Prof. Timo Salmi, ts@chyde.uwasa.fi, Wed 07-08-1991
  4. echo .
  5.  
  6. rem The idea of this simple batch is to show how you can alter
  7. rem the location of your command interpreter. On my system r: is
  8. rem the ramdisk. This can be useful e.g. if you handle floppy disks
  9. rem which do not have the system files on them.
  10.  
  11. if not exist r:\cmand\nul md r:\cmand
  12. copy a:\command.com r:\cmand\command.com
  13. set comspec=r:\cmand\command.com
  14. echo on
  15.